It looks like nothing was found at this location. Maybe try a search?
Pricing
Get access to our free articles and weekly newsletter.
Get access to our paid newsletter and a limited pass for one event.
Month
Get access to our paid newsletter and an unlimited pass.
Month
]*>(.*?)<\/pre>/ig, '\n```\n$1\n```\n'],
code: [/]*>(.*?)<\/code>/ig, '\n`\n$1\n`\n'],
p: [/]*>(.*?)<\/p>/ig, '\n$1\n'],
hr: [/
]*>/ig, '\n---\n']
};
InlineEditor.prototype.toMd = function() {
var html = this.getContent()
.replace(/\n+/g, '') // remove line break
.replace(/<([uo])l\b[^>]*>(.*?)<\/\1l>/ig, '$2'); // remove ul/ol
for(var p in regs) {
if (regs.hasOwnProperty(p))
html = html.replace.apply(html, regs[p]);
}
return html.replace(/\*{5}/g, '**');
};
// make it accessible
if (doc.getSelection) {
selection = doc.getSelection();
root.ElementorInlineEditor = InlineEditor;
}
}(window, document));
(function(w,k,o) {
var t=setTimeout(f,{config_timeout});
k.forEach(function(e){w.addEventListener(e,f,o)});
function f(){
document.querySelectorAll("script[data-lazy='w3tc']").forEach(function(i){i.src = i.dataset.src})
clearTimeout(t);
k.forEach(function(e){w.removeEventListener(e,f,o)})
}
})(window,["keydown","mouseover","touchmove","touchstart","wheel"],{passive:!0})